home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / DJLIBRSX / KILL.S < prev    next >
Text File  |  1994-05-27  |  176b  |  13 lines

  1. /    int kill ( int pid, int signal )
  2.  
  3.     .globl    _kill
  4. _kill:
  5.     movl    4(%esp), %edx
  6.     movl    8(%esp), %ecx
  7.     movw    $0x7f0d, %ax
  8.     int    $0x21
  9.     jecxz    1f
  10.     movl    %ecx, _errno
  11. 1:
  12.     ret
  13.